home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jaz_clib.arc
/
JZINTDIR.C
< prev
next >
Wrap
Text File
|
1989-04-09
|
721b
|
22 lines
#include <jzdirect.h>
/*
┌────────────────────────────────────────────────────────────────────────────┐
│jzintdir │
│Initialize the directory stack structure before the first call to jzpushdir │
│Synopsis: │
│ jzintdir(&whead); │
│ jzpshdir(&whead); │
│ chdir("\\"); │
│ ... │
│ jzpshdir(&whead); │
│ jzpopdir(&whead); │
└────────────────────────────────────────────────────────────────────────────┘
*/
jzintdir(fhead)
TDIRHEAD *fhead;
{
fhead->numitems = 0; /* init stack to zero items */
fhead->first = fhead->last = 0; /* init pointers */
}